从业机构查询与用户授权记录(授权协议号)
从业机构通过调用该接口,使用authorization_code查询与用户授权关系
请求参数 | 类型 | 描述 |
---|---|---|
authorization_code | string | 授权协议号 |
query | object | 声明请求的查询参数 |
service_id | string | 服务ID |
channel_id | string | 渠道商商户号 |
sub_mchid | string | 子商户号 |
php
$instance->v3->payscore->acquiringbank->permissions->authorizationCode->_authorization_code_->getAsync([
'authorization_code' => '1275342195190894594',
'query' => [
'service_id' => '500001',
'channel_id' => '1230000109',
'sub_mchid' => '1230000109',
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();
1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12
php
$instance->chain('v3/payscore/acquiringbank/permissions/authorization-code/{authorization_code}')->getAsync([
'authorization_code' => '1275342195190894594',
'query' => [
'service_id' => '500001',
'channel_id' => '1230000109',
'sub_mchid' => '1230000109',
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();
1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12
php
$instance['v3/payscore/acquiringbank/permissions/authorization-code/{authorization_code}']->getAsync([
'authorization_code' => '1275342195190894594',
'query' => [
'service_id' => '500001',
'channel_id' => '1230000109',
'sub_mchid' => '1230000109',
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();
1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12
php
$response = $instance->v3->payscore->acquiringbank->permissions->authorizationCode->_authorization_code_->get([
'authorization_code' => '1275342195190894594',
'query' => [
'service_id' => '500001',
'channel_id' => '1230000109',
'sub_mchid' => '1230000109',
],
]);
print_r(json_decode((string) $response->getBody(), true));
1
2
3
4
5
6
7
8
9
2
3
4
5
6
7
8
9
php
$response = $instance->chain('v3/payscore/acquiringbank/permissions/authorization-code/{authorization_code}')->get([
'authorization_code' => '1275342195190894594',
'query' => [
'service_id' => '500001',
'channel_id' => '1230000109',
'sub_mchid' => '1230000109',
],
]);
print_r(json_decode((string) $response->getBody(), true));
1
2
3
4
5
6
7
8
9
2
3
4
5
6
7
8
9
php
$response = $instance['v3/payscore/acquiringbank/permissions/authorization-code/{authorization_code}']->get([
'authorization_code' => '1275342195190894594',
'query' => [
'service_id' => '500001',
'channel_id' => '1230000109',
'sub_mchid' => '1230000109',
],
]);
print_r(json_decode((string) $response->getBody(), true));
1
2
3
4
5
6
7
8
9
2
3
4
5
6
7
8
9
返回字典 | 类型 | 描述 |
---|---|---|
service_id | string | 服务ID |
appid | string | 服务商应用ID |
mchid | string | 商户号 |
openid | string | 服务商公众号下的用户标识 |
sub_openid | string | 子商户公众号下的用户标识 |
authorization_code | string | 授权协议号 |
authorization_state | string | 授权状态 |
notify_url | string | 授权通知地址 |
cancel_authorization_time | string | 最近一次解除授权时间 |
authorization_success_time | string | 最近一次授权成功时间 |
sub_mchid | string | 子商户号 |
sub_appid | string | 子商户应用ID |
channel_id | string | 渠道商商户号 |
参阅 官方文档